home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Terra Sound Library
/
Terra Sound Library.iso
/
player_composer
/
eagleplayer
/
ep_to_install
/
installdata
/
arexxexamples.lha
/
EP_FlashPointer-Toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
233b
|
16 lines
/* EaglePlayer - toggles FlashPointer */
address 'rexx_EP'
options results
status G flp
if result == "no" then do
Flashpointer yes
say "FlashPointer is now on !"
end
else do
FlashPointer no
say "FlashPointer is now off !"
end